home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
print
/
ff.arj
/
FF.BAS
next >
Wrap
BASIC Source File
|
1994-03-03
|
1KB
|
22 lines
'****************************************************************************
'* FF.bas by Jeff Barnard 3/94 *
'* *
'* This is about as simple as it gets... QuickBasic 4.5 has nice printer *
'* support, as you can see. All this program does is send a form feed to *
'* lpt1. There is no support that I've found for lpt2, however, so the way *
'* to use this program on any other printer port than lpt1 is to set up a *
'* batch file using the mode command to first route lpt2 to lpt1, for *
'* instance, calling ff.exe, then using the mode command to reroute lpt1 *
'* back to lpt1: *
'* "ff2.bat" *
'* mode lpt2:=lpt1: *
'* ff *
'* mode lpt1:=lpt1: *
'* *
'* Put both the ff.exe and the batch file into your path, and then you can *
'* easily send a form feed to the print by typing "ff <CR>". *
'****************************************************************************
LPRINT CHR$(12)